home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / mail / pine3.96.tar.gz / pine3.96.tar / pine3.96 / pine / osdep / fnexpand.dos < prev    next >
Text File  |  1993-07-15  |  392b  |  18 lines

  1. /*----------------------------------------------------------------------
  2.        Does nothing on dos since ~ is meaningless
  3.  
  4.    Args: buf --  The filename to expand (nothing happens unless begins with ~)
  5.          len --  The length of the buffer passed in (expansion is in place)
  6.  
  7.  Result: buf is returned
  8.  ----*/
  9. char *
  10. fnexpand(buf, len)
  11.      char *buf;
  12.      int len;
  13. {
  14.     return(buf);
  15. }
  16.  
  17.  
  18.